home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / pgm_util / sealit / wizard / winexamp / winexamp.rc < prev    next >
Encoding:
Text File  |  1996-01-07  |  571 b   |  20 lines

  1. // Kustom Magic Software, Copyright (c) 1995, Ralph Krausse
  2. #include <windows.h>
  3. #include "winexample.h"
  4. WINEXAMPLEMenu MENU
  5. BEGIN
  6.     POPUP "&Help"
  7.     BEGIN
  8.         MENUITEM "Show Info...", IDM_SHOWINFO
  9.         MENUITEM "About WinExample Example...", IDM_ABOUT
  10.     End
  11. End
  12. AboutBox DIALOG 22, 17, 144, 75
  13. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  14. CAPTION " About WinExample"
  15. BEGIN
  16.     CTEXT " Microsoft Windows"  - 1, 0, 5, 144, 8
  17.     CTEXT "WinExample Application "  - 1, 0, 14, 144, 8
  18.     DEFPUSHBUTTON " OK" IDOK, 53, 59, 32, 14, WS_GROUP
  19. End
  20.